home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr31 / hades.zip / DICTWORD.H < prev    next >
C/C++ Source or Header  |  1992-04-10  |  1KB  |  41 lines

  1.  
  2. /***************
  3. **
  4. **  dictword.h
  5. **  last revised: april 9, 1992
  6. **
  7. **  Header file for functions implemented in dictword.c.
  8. **  This module deals with conversion of words that are to be stored in a
  9. **  dictionary (capitalise word, lowercase word, first letter capital,
  10. **  etc.)
  11. **
  12. **  Written for DESPERATE password-cracker with HADES encryption engine by
  13. **  Remote.
  14. **
  15. **  Copyright (C)1992, Andre Blum
  16. **
  17. **  root@waves.hacktic.nl (Andre Blum)
  18. **  root@room101.hacktic.nl (Ronald Brockmann)
  19. **
  20. */
  21.  
  22. #define NORMAL     0x0001
  23. #define LOWER      0x0002
  24. #define UPPER      0x0004
  25. #define FIRSTUP    0x0008
  26. #define REVERSE    0x0010
  27. #define EXTNORMAL  0x0020 /* Extnormal: set when the switch -n is selected, */
  28.                           /* extnormal is not, like NORMAL, turned off when */
  29.                           /* LOWER, UPPER or FIRSTUP is selected            */
  30. #define FIRSTWORD  0x0040
  31. #define SECONDWORD 0x0080
  32. #define THIRDWORD  0x0100
  33. #define CHECK      0x0200
  34.  
  35. char *all_lower(char *d, char *s);
  36. char *all_upper(char *d, char *s);
  37. char *first_upper(char *d, char *s);
  38. char *reverse(char *d, char *s);
  39.  
  40. /* EOF DICTWORD.H */
  41.